home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 626-637 / disk_629 / rexxrmf / rexxrmf.lzh / new_release_info.txt < prev    next >
Text File  |  1992-03-14  |  1KB  |  58 lines

  1.  
  2.   RexxRMF.library version 1.8   
  3.   Released March 1992
  4.  
  5.   Release Info
  6.  
  7.  
  8.   Changes for version 1.8 
  9.  
  10.   Fixed bug that possibly would cause guru when deleting or
  11.   updating records.
  12.  
  13.   RexxRMF.library does not like keys to be null, and will return an
  14.   error if a key is null, however record data fields can be null.
  15.  
  16.   In version 1.8 if a record data field is null, RexxRMF will return
  17.   a string containing "(null)".  I figure this would immediately catch
  18.   ones attention when displaying data fields.  Even I got confused when
  19.   displaying data and saw nothing because it was null.
  20.  
  21.  
  22.   Function Enhancements
  23.  
  24.  
  25.   READ_RMF_RECORD
  26.   ---------------
  27.  
  28.   New read type 'L' added to allow reading in descending key order
  29.   (see docs for details)
  30.  
  31.   DELETE_RMF_RECORD
  32.   ---------------
  33.  
  34.   New read type 'L' added to allow deleting in descending key order
  35.   (see docs for details)
  36.  
  37.  
  38.   ADD_KEY
  39.   -------
  40.  
  41.   This function changed so that alternate keys can be linked.
  42.   (see docs for details)
  43.   
  44.  
  45.  
  46.   FIND_POS
  47.   --------
  48.  
  49.   This function changed so that the last node in the tree could be returned.
  50.   If 'pos' argument is negative then the last node in the tree is returned.
  51.  
  52.   eg.
  53.      treenode = FIND_POS(ix,ixnum,-1)
  54.      will return the treenode of the last node (in sorted order) in the tree
  55.  
  56.   (see docs for details)
  57.   
  58.